Add Multiple Icons Support + ZlibStream Unicode + DarkExt.json changes#39
Open
RainbowHype123 wants to merge 19 commits into
Open
Add Multiple Icons Support + ZlibStream Unicode + DarkExt.json changes#39RainbowHype123 wants to merge 19 commits into
RainbowHype123 wants to merge 19 commits into
Conversation
ZlibStream Unicode is from a port I did in my own rSDK repo, and then hastily ported into the MMF2EXTs repo. It may need some extra review and/or fixes before the pull request is accepted.
I also renamed the preprocessor MULTIPLEICONS to DARKEDIF_MULTIPLE_ICONS, per Phi's request. There's still a little more work to do.
270bf99 to
60343c3
Compare
Removed the NOPROPS reference I previously added due to me having misunderstood what it's actually used for.
If ANSI ext is loaded by Unicode runtime, the Fusion internal strings are in Unicode, not ANSI. This is a subtle error as the compiler will define the TCHAR as char, but the contents is wchar_t.
This is a breaking change for iOS, as CRunFrame isn't linked in default iOS projects. To fix, add CRunFrame.h into your iOS project under Global for all extensions folder. Currently iOS only copies the headers that the VS project references, which is somewhat messy. Later I'll change the DE PreBuildTool to do what it does for Mac: copying the entire Inc folder. This commit adds: * CRunApp nCurrentFrame, Frame, name, appFileName, editorFileName, targetFileName * CRunFrame
Nothing ever goes wrong when I mess with Windows structs 👍
HelpNDoc now exports incomplete topics too for HTML. A little better when doing git diffs to see what I edited.
I started feature creeping this, so... yeah. More complicated than it should be, with NUMA nodes, physical core packages, cores, logical cores (hyperthreading), Performance vs Efficiency, etc. Gonna drop it for now and focus on DebugObject.
ZlibStream Unicode is from a port I did in my own rSDK repo, and then hastily ported into the MMF2EXTs repo. It may need some extra review and/or fixes before the pull request is accepted.
I also renamed the preprocessor MULTIPLEICONS to DARKEDIF_MULTIPLE_ICONS, per Phi's request. There's still a little more work to do.
Removed the NOPROPS reference I previously added due to me having misunderstood what it's actually used for.
Struggling to get my pull request's files up-to-date with the current version of MMF2EXTS
0043bd0 to
8c151a1
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
ZlibStream Unicode is from a port I did in my own rSDK repo, and then hastily ported into the MMF2EXTs repo. It may need some extra review and/or fixes before the pull request is accepted.